home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / batchut / stackey3.zip / FLUSH.ASM < prev    next >
Assembly Source File  |  1990-03-25  |  403b  |  21 lines

  1.                               title FLUSH.ASM
  2. ;Copyright (C) 1990 by B. Simon and R. M. Wilson, all rights reserved.
  3.  
  4. cseg segment
  5.         assume  cs:cseg
  6.  
  7. begin:  mov al,0AEH
  8.         out 64H,al
  9.         xor cx,cx
  10.       here: loop here
  11.         mov ah,1
  12.         int 16h
  13.         jz nomore
  14.         xor ah,ah
  15.         int 16h
  16.         jmp short begin
  17.       nomore: ret
  18.  
  19. cseg ends
  20. end begin
  21.